home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_009 / proff / debug.h next >
C/C++ Source or Header  |  1992-05-06  |  126b  |  15 lines

  1.  
  2.  
  3.  
  4. /*
  5. #define DEBUG
  6. #define PROFILE
  7. */
  8.  
  9. #ifdef PROFILE
  10. #define dprintf(str)    printf((str));
  11. #else
  12. #define dprintf(str)
  13. #endif
  14.  
  15.